double queue - определение. Что такое double queue
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое double queue - определение

ABSTRACT DATA TYPE FOR WHICH ELEMENTS CAN BE ADDED TO OR REMOVED FROM EITHER THE FRONT OR BACK
Doubly-ended queue; Deques; Double ended queue; Deque; Double-Ended Queue; Head-tail linked list; Doubly ended queue; Real-time deque
  • browsing history]]: new websites are added to the end of the queue, while the oldest entries will be deleted when the history is too large. When a user asks to clear the browsing history for the past hour, the most recently added entries are removed.
Найдено результатов: 2741
double-ended queue         
<algorithm> /dek/ (deque) A queue which can have items added or removed from either end[?]. The Knuth reference below reports that the name was coined by E. J. Schweppe. [D. E. Knuth, "The Art of Computer Programming. Volume 1: Fundamental Algorithms", second edition, Sections 2.2.1, 2.6, Addison-Wesley, 1973]. Silicon Graphics (http://sgi.com/tech/stl/Deque.html). [Correct definition? Example use?] (2003-12-17)
Double-ended queue         
In computer science, a double-ended queue (abbreviated to deque, pronounced deck, like "cheque"Jesse Liberty; Siddhartha Rao; Bradley Jones. C++ in One Hour a Day, Sams Teach Yourself, Sixth Edition.
deque         
Double-ended priority queue         
  • A dual structure with 14,12,4,10,8 as the members of DEPQ.<ref name = "Sahni"/>
  • Implementing a DEPQ using interval heap.
  • A leaf correspondence heap for the same elements as above.<ref name = "Sahni"/>
  • A total correspondence heap for the elements 3, 4, 5, 5, 6, 6, 7, 8, 9, 10, 11 with element 11 as buffer.<ref name = "Sahni"/>
ABSTRACT DATA STRUCTURE THAT SUPPORTS REMOVAL OF MAXIMUM- AND MINIMUM-PRIORITY ELEMENTS
DEPQ; Double ended heaps (deaps); Double-ended heap; Interval heap
In computer science, a double-ended priority queue (DEPQ)Data Structures, Algorithms, & Applications in Java: Double-Ended Priority Queues, Sartaj Sahni, 1999. or double-ended heap is a data structure similar to a priority queue or heap, but allows for efficient removal of both the maximum and minimum, according to some ordering on the keys (items) stored in the structure.
Client–queue–client         
Client-Queue-Client; Client-queue-client
A client–queue–client or passive queue system is a client–server computer network in which the server is a data queue for the clients. Instead of communicating with each other directly, clients exchange data with one another by storing it in a repository (the queue) on a server.
Queue         
WIKIMEDIA DISAMBIGUATION PAGE
Queue (computing); Queues; Queuing methods; Queue (disambiguation); The Queue (disambiguation); The Queue (novel)
·vt To fasten, as hair, in a queue.
II. Queue ·noun A line of persons waiting anywhere.
III. Queue ·noun A tail-like appendage of hair; a pigtail.
double-declutch         
METHOD OF SHIFTING GEARS
Double clutching; Double-clutching; Double declutching; Double-declutching; Double declutch; Double de-clutching; Double-declutch; Double declutches; Double declutched; Double-declutched; Double clutch (technique)
¦ verb Brit. release and re-engage the clutch of a vehicle twice when changing gear.
queue         
WIKIMEDIA DISAMBIGUATION PAGE
Queue (computing); Queues; Queuing methods; Queue (disambiguation); The Queue (disambiguation); The Queue (novel)
¦ noun
1. chiefly Brit. a line or sequence of people or vehicles awaiting their turn to be attended to or to proceed.
Computing a list of data items, commands, etc., stored so as to be retrievable in a definite order.
2. archaic a plait of hair worn at the back of the head.
¦ verb (queues, queuing or queueing, queued) chiefly Brit. wait in a queue.
?Computing arrange in a queue.
Origin
C16 (as a heraldic term denoting an animal's tail): from Fr., based on L. cauda 'tail'; cf. cue2.
Double album         
  • The Beatles]]'' (1968), colloquially known as ''The White Album'', one of the best-selling double albums of all time
AUDIO RECORDING ALBUM WHICH SPANS TWO UNITS OF THE PRIMARY MEDIUM IN WHICH IT IS SOLD
Double LP; Double albums; Double Album; Double disc; Double Disc; Double-disc; Double-Disc; Double disc album; Double Disc album; Double-disc album; Double-Disc album; Double CD album; Double-CD album; Double CD; Double-CD; Triple album; Triple albums; Double-album
A double album (or double record) is an audio album that spans two units of the primary medium in which it is sold, typically either records or compact disc. A double album is usually, though not always, released as such because the recording is longer than the capacity of the medium.
queue         
WIKIMEDIA DISAMBIGUATION PAGE
Queue (computing); Queues; Queuing methods; Queue (disambiguation); The Queue (disambiguation); The Queue (novel)
I
n. (esp. BE)
1) to form a queue
2) to join; jump the queue
3) in a queue (to stand in a queue)
II
v. see queue up

Википедия

Double-ended queue

In computer science, a double-ended queue (abbreviated to deque, pronounced deck, like "cheque") is an abstract data type that generalizes a queue, for which elements can be added to or removed from either the front (head) or back (tail). It is also often called a head-tail linked list, though properly this refers to a specific data structure implementation of a deque (see below).

A deque is a data structure that allows insertion and removal of elements from both ends. This is different from a queue, which only allows insertion at one end and removal from the other end, following a first-in, first-out (FIFO) order. Deques can have several sub-types, including input-restricted deques, where deletion can be made from both ends but insertion can only be made at one end, and output-restricted deques, where insertion can be made at both ends but deletion can only be made from one end.

Deques are a fundamental data structure in computing, and many other data structures can be implemented using them. For example, queues and stacks can both be considered specializations of deques. The basic operations on a deque are adding elements to either end and removing elements from either end. Additionally, peek operations allow the value at one end to be examined without removing it.

There are at least two common ways to efficiently implement a deque: with a modified dynamic array or with a doubly linked list. Dynamic array-based deques, also called array deques, can grow from both ends and have all the properties of a dynamic array, such as constant-time random access and good locality of reference, with the addition of amortized constant-time insertion and removal at both ends. Three common implementations of array deques include storing deque contents in a circular buffer, allocating deque contents from the center of the underlying array, and storing contents in multiple smaller arrays. The other common implementation of deques is with a doubly linked list, which allows for constant-time insertion and removal at both ends, but with less efficient random access than dynamic array-based implementations.